home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / presto / presto10.lha / src / pstream.C < prev    next >
C/C++ Source or Header  |  1991-12-11  |  598b  |  34 lines

  1. #ifdef notdef
  2.  
  3. /*
  4.  * pstream.c:
  5.  *    
  6.  *    Beginnings of rudimentary I/O code
  7.  *
  8.  */
  9.  
  10. #include <stream.h>
  11. #include "pstream.h"
  12.  
  13.  
  14. PSTREAM_SHARED char pcout_buf[BUFSIZE];
  15. PSTREAM_SHARED filebuf pcout_file(stdout);    // UNIX output stream 1
  16. PSTREAM_SHARED ostream pcout(&pcout_file);
  17.  
  18. PSTREAM_SHARED char pcerr_buf[1];
  19. PSTREAM_SHARED filebuf pcerr_file(stderr);    // UNIX output stream 2
  20. PSTREAM_SHARED ostream pcerr(&pcerr_file);
  21.  
  22.  
  23.  
  24. PSTREAM_SHARED filebuf pcin_file(stdin);        // UNIX input stream 0
  25. PSTREAM_SHARED istream pcin(&pcin_file,1,&pcout);    // cin tied to cout
  26.  
  27.  
  28. void
  29. usepstream()
  30. {
  31.     return;
  32. }
  33. #endif
  34.